home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / chrome / browser.jar / content / browser / bookmarks / addBookmark.xul < prev    next >
Extensible Markup Language  |  2007-07-18  |  4KB  |  116 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- -*- Mode: HTML; indent-tabs-mode: nil; -*- -->
  4. <!--
  5.  
  6.  ***** BEGIN LICENSE BLOCK *****
  7.  Version: MPL 1.1/GPL 2.0/LGPL 2.1
  8.  
  9.  The contents of this file are subject to the Mozilla Public License Version
  10.  1.1 (the "License"); you may not use this file except in compliance with
  11.  the License. You may obtain a copy of the License at
  12.  http://www.mozilla.org/MPL/
  13.  
  14.  Software distributed under the License is distributed on an "AS IS" basis,
  15.  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  16.  for the specific language governing rights and limitations under the
  17.  License.
  18.  
  19.  The Original Code is mozilla.org code.
  20.  
  21.  The Initial Developer of the Original Code is
  22.  Netscape Communications Corporation.
  23.  Portions created by the Initial Developer are Copyright (C) 1998
  24.  the Initial Developer. All Rights Reserved.
  25.  
  26.  Contributor(s):
  27.    Ben Goodger <ben@netscape.com> (Original Author)
  28.  
  29.  Alternatively, the contents of this file may be used under the terms of
  30.  either the GNU General Public License Version 2 or later (the "GPL"), or
  31.  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  32.  in which case the provisions of the GPL or the LGPL are applicable instead
  33.  of those above. If you wish to allow use of your version of this file only
  34.  under the terms of either the GPL or the LGPL, and not to allow others to
  35.  use your version of this file under the terms of the MPL, indicate your
  36.  decision by deleting the provisions above and replace them with the notice
  37.  and other provisions required by the GPL or the LGPL. If you do not delete
  38.  the provisions above, a recipient may use your version of this file under
  39.  the terms of any one of the MPL, the GPL or the LGPL.
  40.  
  41.  ***** END LICENSE BLOCK ***** -->
  42.  
  43. <?xml-stylesheet href="chrome://browser/skin/"?>
  44. <?xml-stylesheet href="chrome://browser/content/bookmarks/bookmarks.css"?>
  45.  
  46. <!DOCTYPE dialog [
  47. <!ENTITY % addBookmarkDTD SYSTEM "chrome://browser/locale/bookmarks/addBookmark.dtd">
  48. %addBookmarkDTD;
  49. <!ENTITY % favOverlayDTD SYSTEM "chrome://flock/locale/favorites/bookmarksOverlay.dtd" >
  50. %favOverlayDTD;
  51. ]>
  52. <dialog id="newBookmarkDialog" style="width: 36em; height: 18em;"
  53.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  54.         ondialogaccept="return onOK(event)"
  55.         title="&flock.newBookmark.title;" title-selectFolder="&selectFolder.label;"
  56.         onload="Startup();"
  57.         persist="screenX screenY width height"
  58.         screenX="24" screenY="24">
  59.    
  60.   <script type="application/x-javascript" src="chrome://browser/content/bookmarks/addBookmark.js"/>
  61.   <script type="application/x-javascript" src="chrome://browser/content/bookmarks/bookmarks.js"/>
  62.  
  63.   <broadcaster id="showaddgroup" hidden="true"/>
  64.  
  65.   <separator id="nameseparator" class="thin"/>
  66.   
  67.   <grid id="bookmarknamegrid">
  68.     <columns>
  69.       <column/>
  70.       <column flex="5"/>
  71.       <column flex="1"/>
  72.     </columns>
  73.     <rows>
  74.       <row align="center">
  75.         <label value="&name.label;" accesskey="&name.accesskey;" control="name"/>
  76.         <textbox id="name" oninput="onFieldInput();"/>
  77.         <spacer/>
  78.       </row>
  79.       <row>
  80.         <separator class="thin"/>
  81.         <separator class="thin"/>
  82.         <spacer/>
  83.       </row>
  84.       <row align="center">
  85.         <label value="&url.label;" accesskey="&url.accesskey;" control="url"/>
  86.         <textbox id="url" oninput="onFieldInput();"/>
  87.         <spacer/>
  88.       </row>
  89.       <row observes="showaddgroup">
  90.         <separator class="thin"/>
  91.         <separator class="thin"/>
  92.         <spacer/>
  93.       </row>
  94.     </rows>
  95.   </grid>
  96.  
  97.   <separator id="createinseparator"/>
  98.  
  99.   <vbox id="folderbox" flex="1">
  100.     <separator/>
  101.     <hbox flex="1">
  102.       <label id="movetolabel" value="&moveto.label;"/>
  103.       <hbox flex="1">
  104.         <bookmarks-tree id="bookmarks-view" flex="1" type="folders"/>
  105.         <vbox>
  106.           <button label="&button.newfolder.label;" accesskey="&button.newfolder.accesskey;"
  107.                   oncommand="createNewFolder();" icon="open"/>
  108.         </vbox>
  109.       </hbox>
  110.     </hbox>
  111.   </vbox>
  112.  
  113.   <separator/>
  114.  
  115. </dialog>
  116.